cody - HTMLify profile

cody
4270 Files
635875 Views
Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/151 - Type Writer Effect/js
var mydiv = document.getElementById("mydiv");
var mybutton = document.getElementById("mybutton");
const typewrite = () =>{
var text = document.getElementById("inputText").value;
mydiv.textContent="";
for(let i=0 ; i<text.length ; i++){